Version

DeserializeProperty<T>(SerializationEntry,T) Method

Deserializes the specified property from the SerializationEntry object.
Syntax
'Declaration
 
Public Overloads Shared Function DeserializeProperty(Of T)( _
   ByVal entry As SerializationEntry, _
   ByRef field As T _
) As Boolean
public static bool DeserializeProperty<T>( 
   SerializationEntry entry,
   ref T field
)

Parameters

entry
Entry used to obtain the object to deserialize
field
The default value will be returned if the de-serialization and type conversion fails.

Type Parameters

T

Return Value

The deserialized object
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also